Gets the row at the specified ordinal position.

Namespace:  C1.LiveLinq.AdoNet
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public TRow this[
	int ordinal
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	ordinal As Integer _
) As TRow
	Get

Parameters

ordinal
Type: System..::..Int32
The zero-based ordinal position of the row to return.

Return Value

The specified row.

Remarks

This property returns the same row as Rows[ordinal] of the DataTable represented by this IndexedDataTable<(Of <(<'TRow>)>)>.

See Also